home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / ubiquity / clock-setup-apply < prev    next >
Text File  |  2009-09-27  |  1KB  |  63 lines

  1. #! /bin/sh
  2. set -e
  3.  
  4. # Much of this is cloned-and-hacked from
  5. # clock-setup/finish-install.d/10clock-setup.
  6.  
  7. . /usr/share/debconf/confmodule
  8.  
  9. if [ "$UBIQUITY_OEM_USER_CONFIG" ]; then
  10.     roots=/
  11. else
  12.     roots='/ /target'
  13. fi
  14.  
  15. rcsfile=/etc/default/rcS
  16. adjtimefile=/etc/adjtime
  17.  
  18. db_get clock-setup/utc
  19. for root in $roots; do
  20.     if [ "$RET" = true ]; then
  21.         sed -i -e 's:^UTC="no":UTC="yes":' -e 's:^UTC=no:UTC=yes:' $root$rcsfile
  22.         if [ -e "$root$adjtimefile" ]; then
  23.             sed -i -e 's:^LOCAL:UTC:' $root$adjtimefile
  24.         fi
  25.         UTC='--utc'
  26.     else
  27.         sed -i -e 's:^UTC="yes":UTC="no":' -e 's:^UTC=yes:UTC=no:' $root$rcsfile
  28.         if [ -e "$root$adjtimefile" ]; then
  29.             sed -i -e 's:^UTC:LOCAL:' $root$adjtimefile
  30.         fi
  31.         UTC='--localtime'
  32.     fi
  33. done
  34.  
  35. # It isn't strictly necessary to set the hardware clock here, but we do it
  36. # anyway in case the system crashes before being shut down.
  37. # TODO: progress information?
  38.  
  39. log-output -t clock-setup hwclock --systohc --debug --noadjfile $UTC &
  40. pid="$!"
  41. count=0
  42.  
  43. stop_hwclock () {
  44.     kill $pid || return
  45.     sleep 1
  46.     if [ -e /proc/$pid ]; then
  47.         kill -9 $pid || return
  48.     fi
  49. }
  50.  
  51. while sleep 1; do
  52.     if [ ! -e /proc/$pid ]; then
  53.         break
  54.     fi
  55.     count=$(expr $count + 1)
  56.     if [ "$count" = 30 ]; then
  57.         stop_hwclock
  58.         break
  59.     fi
  60. done
  61.  
  62. exit 0
  63.